home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / sozobon2.zoo / tools / makefile < prev    next >
Encoding:
Makefile  |  1990-12-13  |  197 b   |  16 lines

  1. #
  2. # Makefile for various utilities
  3. #
  4. CFLAGS = -O
  5.  
  6. PROGS = globs.ttp nm.ttp size.ttp ar.ttp cc.ttp
  7.  
  8. all: $(PROGS)
  9.     @$(ECHO) Compile done
  10.  
  11. clean:
  12.     $(RM) *.o
  13.  
  14. clobber:
  15.     $(RM) *.o *.ttp
  16.